home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / UNZIP_MA / SOURCE / MAC.ZIP / unzip.make.mpw < prev   
Text File  |  1992-03-03  |  1KB  |  51 lines

  1. #   This MPW makefile is designed to be used to compile an MPW version
  2. #   of unzip using the MPW C compiler, version 3.2. Simply rename
  3. #   this file as unzip.make and do an MPW build.
  4.  
  5.  
  6. #   File:       unzip.make
  7. #   Target:     unzip
  8. #   Sources:    unzip.c
  9. #               extract.c
  10. #               file_io.c
  11. #               macfile.c
  12. #               macstat.c
  13. #               mapname.c
  14. #               match.c
  15. #               misc.c
  16. #               unimplod.c
  17. #               unreduce.c
  18. #               unshrink.c
  19. #   Created:    Saturday, February 29, 1992 7:05:00 PM
  20.  
  21.  
  22. CFLAGS = -d MPW
  23.  
  24. LFLAGS = -m
  25.  
  26.  
  27. .c.o ─ .c unzip.h unzip.make
  28.         C {CFLAGS} {Default}.c
  29.  
  30. OBJECTS = ╢
  31.         unzip.c.o ╢
  32.         extract.c.o ╢
  33.         file_io.c.o ╢
  34.         macfile.c.o ╢
  35.         macstat.c.o ╢
  36.         mapname.c.o ╢
  37.         match.c.o ╢
  38.         misc.c.o ╢
  39.         unimplod.c.o ╢
  40.         unreduce.c.o ╢
  41.         unshrink.c.o
  42.  
  43. unzip ─ {OBJECTS}
  44.         Link -d -c 'MPS ' -t MPST ╢
  45.                 {OBJECTS} ╢
  46.                 "{CLibraries}"StdClib.o ╢
  47.                 "{Libraries}"Stubs.o ╢
  48.                 "{Libraries}"Runtime.o ╢
  49.                 "{Libraries}"Interface.o ╢
  50.                 -o unzip
  51.